159ec73abb12e0c3c5c2d192fd215d9cc3286f8c,src/main/java/org/red5/server/service/Installer.java,Installer,install,#String#,163

Before Change


                    }
                } catch (HttpHostConnectException he) {
                    log.error("Http error connecting to {}", applicationRepositoryUrl, he);
                    method.abort();
                } catch (IOException ioe) {
                    log.error("Unable to connect to {}", applicationRepositoryUrl, ioe);
                    method.abort();
                } finally {
                    if (fos != null) {
                        try {

After Change


                    }
                } catch (HttpHostConnectException he) {
                    log.error("Http error connecting to {}", applicationRepositoryUrl, he);
                    if (method != null) {
                        method.abort();
                    }
                } catch (IOException ioe) {
                    log.error("Unable to connect to {}", applicationRepositoryUrl, ioe);
                    if (method != null) {
                        method.abort();
                    }
                } finally {
                    if (fos != null) {